home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 001-025 / scopedisk7 / net0509 / net.doc < prev    next >
Text File  |  1995-03-18  |  5KB  |  113 lines

  1. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\
  2. * |_o_o|\\ Copyright (c) 1989 The Software Distillery.                    *
  3. * |. o.| ||          All Rights Reserved                                  *
  4. * | .  | ||          Written by John Toebes and Doug Walker               *
  5. * | o  | ||          The Software Distillery                              *
  6. * |  . |//           235 Trillingham Lane                                 *
  7. * ======             Cary, NC 27513                                       *
  8. *                    BBS:(919)-471-6436                                   *
  9. \* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  10.  
  11. This material is Copyright (C) 1988 and 1989 The Software Distillery.
  12. It may be distributed freely as long as the following restrictions are met:
  13.  
  14.    1.  All files present in the distribution package must be redistributed
  15.        with the package, including this documentation file.  If you 
  16.        distribute on diskette, all files must be on a single diskette.
  17.  
  18.    2.  The distributor may charge a fee to recover distribution costs.
  19.        The fee for diskette distribution should not be more than the cost 
  20.        to obtain the same diskette from Fred Fish or The Software Distillery,
  21.        whichever is greater.  Current charge from The Software Distillery
  22.        is $6 per disk, including all postage and handling charges.
  23.  
  24.    3.  The distributor agrees to cease distributing the programs and data
  25.        involved if requested to do so by authors or any member of The 
  26.        Software Distillery.
  27.  
  28. ------------------------------DISCLAIMER
  29.  
  30. Neither The Software Distillery nor any of its members will be liable for 
  31. any damage arising from the failure of this program to perform as described,
  32. or any destruction of other programs or data residing on a system 
  33. attempting to run the program.  While we know of no damaging errors, the 
  34. user of this program uses it at his or her own risk.
  35.  
  36. THIS SOFTWARE IS A PRERELEASE VERSION THAT MAY HAVE BUGS.  PLEASE USE IT
  37. CAUTIOUSLY.  THANK YOU.
  38.  
  39. -----------------------------FUNCTIONALITY 
  40.  
  41. The network handler in this distribution relies on DNET for communication,
  42. but all dependancies on DNET are isolated.  The intent is for a future 
  43. release to support ANY COMMUNICATIONS METHOD, including serial, parallel,
  44. AppleTalk, DecNET, NFS, you name it, all simultaneously via external 
  45. communications servers.
  46.  
  47.  
  48. ============================================================================
  49.  
  50. RUNNING THE NETWORK HANDLER:
  51.  
  52. These instructions talk about a 'local' machine and a 'remote' machine.
  53. The network is symmetric, so for DNET at least, you can do the 
  54. installation on both sides.  Just install all files on both machines,
  55. and perform all commands on both machines.
  56.  
  57. 1. Install DNET on both machines.  Add an entry to the dnet.servers 
  58.    file on the remote machine for the network server.  A sample 
  59.    dnet.servers file is included in this distribution in the file 
  60.    "dnet.servers".  Note the server number for the network is 9492.  You 
  61.    will need to change the pathname specified in the sample dnet.servers 
  62.    file to reflect the path you intend to use.
  63.  
  64. 2. Copy netdnet-server to the path specified in the dnet.servers file on
  65.    the remote machine.
  66.  
  67. 3. Put a mountlist entry for the network handler in the local machine's
  68.    DEVS:MOUNTLIST.  A sample mountlist entry is included in this 
  69.    distribution in the file "mountlist".  If you do not want the network 
  70.    handler in l:, replace the specified path with one of your own.
  71.  
  72. 4. Copy netdnet-handler from the HANDLER subdirectory to the path specified
  73.    in the mountlist on the local machine.
  74.  
  75. 5. Issue the CLI command "ASSIGN ROOT: <path>" on the remote machine.  The
  76.    network handler mounts the ROOT: device on the remote node as a network
  77.    node on the local node;  the place you point ROOT: to is where your
  78.    files will go.  Copy the file NODE.INFO from the distribution disk
  79.    to ROOT:.  This file contains the .info information for the remote node
  80.    that will be displayed on the workbench screen of the local node.  Feel
  81.    free to replace it with any DRAWER type .info file.
  82.  
  83. 6. Issue the CLI command "MOUNT NET:" on the local node.  The first 
  84.    reference to NET: after the MOUNT command will load the handler.  DNET
  85.    will load the server on the remote node automatically.
  86.  
  87. ============================================================================
  88.  
  89. Once the NET: device is running, you can use the provided NETMOUNT command
  90. to allow access to other devices besides ROOT: on the remote machine.
  91. NETMOUNT is a temporary stopgap until a real ROOT: device is implemented
  92. that allows access to all devices on a machine via a single handler.
  93.  
  94. For now, the NETMOUNT command format is
  95.  
  96. NETMOUNT <local device> <node name> <remote device>
  97.  
  98. where <local device>  is the name you MOUNTed (usually NET:)
  99.       <node name>     is the name you want to refer to the new entry as
  100.       <remote device> is the name of the device on the remote node to use
  101.       
  102. For example, 
  103.  
  104. NETMOUNT NET: DF0 DF0:
  105.  
  106. would allow you to access the floppy on the remote node by using the path
  107. NET:DF0.  Thus, 
  108.  
  109. DIR NET:DF0
  110.  
  111. would produce the same results as doing a DIR DF0: on the remote machine.
  112.  
  113.